home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 June / SGI Freeware 1998 June.iso / dist / fw_ATxgopher.idb / usr / freeware / src / xgopher.1.3 / sc_indexP.h.z / sc_indexP.h
C/C++ Source or Header  |  1998-01-21  |  1KB  |  39 lines

  1. /* sc_indexP.h
  2.    private header file for gopher item subclass: index */
  3.  
  4.      /*---------------------------------------------------------------*/
  5.      /* Xgopher        version 1.3     08 April 1993                  */
  6.      /*                version 1.2     20 November 1992               */
  7.      /*                version 1.1     20 April 1992                  */
  8.      /*                version 1.0     04 March 1992                  */
  9.      /* X window system client for the University of Minnesota        */
  10.      /*                                Internet Gopher System.        */
  11.      /* Allan Tuchman, University of Illinois at Urbana-Champaign     */
  12.      /*                Computing and Communications Services Office   */
  13.      /* Copyright 1992, 1993 by                                       */
  14.      /*           the Board of Trustees of the University of Illinois */
  15.      /* Permission is granted to freely copy and redistribute this    */
  16.      /* software with the copyright notice intact.                    */
  17.      /*---------------------------------------------------------------*/
  18.  
  19. #include "util.h"
  20. #include "sc_index.h"
  21.  
  22. char    prefixIndex [ PREFIX_LEN ];
  23.  
  24.  
  25. /* ----- subclass record definition ----- */
  26.  
  27. scInfo    indexSubclass = {
  28.         "index search",
  29.         prefixIndex,
  30.         &nullHostList,
  31.         GI_access,
  32.         GI_noCopyItem,
  33.         copyTypeAscii,
  34.         GIIndex_process,
  35.         GIIndex_init,
  36.         GI_done,
  37.         GIIndex_restart
  38.     };
  39.